home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Online / Apache / cgi-bin / uptime < prev    next >
Encoding:
Text File  |  2001-03-06  |  165 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. UPTIME=/usr/ucb/uptime
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $UPTIME ];  then
  9.     $UPTIME
  10. else 
  11.     echo Cannot find uptime command on this system.
  12. fi
  13.  
  14.  
  15.